
<!DOCTYPE html>
<html>

<head>
<style>


#header {
    background-image: url('jays.jpg');
    background-repeat: no-repeat;
    background-position: 60px 15px; 
    background-color:blue;
    color:white;
    text-align:center;
    padding:5px;
    width: 100%;

     
}


#nav {
    line-height:30px;
    text-align: center;
    background-color:red;
    width:100%;
    float:left;
    padding:5px;	      
}

#section {
    width:100%;
    height:200px;
    float:left;	 	 
}
.jays {
        left: 800px;
        top: 150px;
        position: absolute;
        width: 300px;
    }

#footer {
    background-color:blue;
    color:white;
    clear:both;
    text-align:center;
   padding:5px;	 	 
}


</style>
</head>

<body>

<div id="header">
<h1>Toronto Blue Jays</h1>
</div>

<div id="nav">
<table style="width:100%">
  <tr>
    	<td>Home</td>
	<td>History</td>
    	<td>Alumni</td>
	<td>Stadium</td>
	<td>Links</td>
  </tr>
</table>
</div>

<div id="section">
<h2>About</h2>

<p>
The Toronto Blue Jays are a Canadian professional baseball team based in Toronto, Ontario. The Blue Jays <br>are a member of the East Division of Major League Baseball's American League, and play their home games <br>at Rogers Centre.
</p>

<video class="jays">
  <source src="jays.mp4" type="video/mp4">
 </video>


</div>

<div id="footer">
Copyright - Toronto Blue Jays Baseball
</div>

</body>
</html>